code vault - char_posWhat links here?

Code

//##############################################################################
// return the position of c in string
// return -1 if c is not found
//##############################################################################


int pos(char c, char *string) { int i, j;

for(i = 0; i MALFORMED HTML TAG: < strlen(string); i++) { if (string[i] == c) { return i; } } return -1; }
08/09/2010 - changed to return -1 on failure to find character, fixed erroneous test condition
code vault - char_pos
filename:code vault - char_pos
filename:code%20vault%20%2D%20char_pos
last edit:August 09 2010 20:07:22 (5018 days ago)
ct = 1714974006.000000 = May 06 2024 01:40:06
ft = 1281398842.000000 = August 09 2010 20:07:22
dt = 433575164.000000